@charset "utf-8";
* {
    outline: none;
    box-sizing: border-box;
    -webkit-user-select: none;
    -webkit-tap-highlight-color:rgba(255,255,255,0);
}
html,
body {
    width: 100%;
    height: 100%;
}
body {
    font-family: "microsoft yahei";
    font-size: 14px;
    color: #333;
}
body,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
p,
pre {
    margin: 0;
}
ol,
ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
h1,
h2,
h3,
h4 {
    font-weight: normal;
}
img {
    vertical-align: middle;
}
input,
textarea,
select {
    -webkit-tap-highlight-color: transparent;
    -webkit-user-select: auto;
    border-radius: 0;
}
input:focus,
textarea:focus,
select:focus {
    -webkit-tap-highlight-color: transparent;
    -webkit-user-modify: read-write-plaintext-only;
}
a:active,
a:hover {
    outline: 0
}
a {
    text-decoration: none;
    outline: 0;
    color: black;
}
a:focus {
    outline: thin dotted;
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px
}
button,
input,
select,
textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit
}
button,
input,
optgroup,
select,
textarea {
    color: inherit;
    font: inherit;
    margin: 0
}
button,
html input[type=button],
input[type=reset],
input[type=submit],
input[type=radio]
{
    -webkit-appearance: button;
    cursor: pointer
}
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
}
em, i {
    font-style: normal;
}
/*浮动*/
.fl{
    float: left;
}
.fr{
    float: right;
}
/*清除浮动*/
.clearfix:before{
    content: ".";
    display: block;
    overflow: hidden;
    visibility: hidden;
    width: 0;
    height: 0;
}
.clearfix:after {
    display: table;
    content: "";
    clear: both;
}
.clearfix {
    zoom: 1;
}
